home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / cross / GBDK-2.0.lha / GBDK / lib / islower.c < prev    next >
C/C++ Source or Header  |  1998-10-01  |  107b  |  10 lines

  1. #include <ctype.h>
  2.  
  3. BYTE islower(char c)
  4. {
  5.   if(c >= 'a' && c <= 'z')
  6.     return 1;
  7.   else
  8.     return 0;
  9. }
  10.